home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / contrib / mrchcube / makefile < prev    next >
Encoding:
Makefile  |  1996-07-16  |  296 b   |  21 lines

  1. #
  2. # Make file for marching cube.
  3. #
  4. #                Gershon Elber, Dec. 1992
  5. #
  6.  
  7.  
  8. include ../../indy/makeflag.unx
  9.  
  10. MORE_FLAGS = -I$(SRC_DIR)/triv_lib
  11.  
  12. OBJS    = mc_main.o
  13.  
  14. all:    mrchcube
  15.  
  16. mrchcube:    $(OBJS)
  17.     $(CC) $(CFLAGS) -o mrchcube $(OBJS) $(LIBS) -lm $(MORELIBS)
  18.  
  19. install: mrchcube
  20.     mv -f mrchcube $(BIN_DIR)
  21.